home *** CD-ROM | disk | FTP | other *** search
/ Foreland January 1997 / Foreland January 1997.iso / menu.dir / 00042.ls < prev    next >
Encoding:
Text File  |  1996-12-26  |  1.0 KB  |  43 lines

  1. on exitFrame
  2.   global x
  3.   if rollOver(20) and (x <> 1) then
  4.     puppetSound("corp sound")
  5.     set x to 1
  6.   else
  7.     if rollOver(21) and (x <> 2) then
  8.       puppetSound("nevada sound")
  9.       set x to 2
  10.     else
  11.       if rollOver(22) and (x <> 3) then
  12.         puppetSound("economic sound")
  13.         set x to 3
  14.       else
  15.         if rollOver(23) and (x <> 4) then
  16.           puppetSound("rig sound")
  17.           set x to 4
  18.         else
  19.           if rollOver(24) and (x <> 5) then
  20.             puppetSound("staff sound")
  21.             set x to 5
  22.           else
  23.             if rollOver(25) and (x <> 6) then
  24.               puppetSound("tools sound")
  25.               set x to 6
  26.             else
  27.               if rollOver(26) and (x <> 7) then
  28.                 puppetSound("eagle sound")
  29.                 set x to 7
  30.               else
  31.                 if rollOver(27) and (x <> 8) then
  32.                   puppetSound("glossary sound")
  33.                   set x to 8
  34.                 end if
  35.               end if
  36.             end if
  37.           end if
  38.         end if
  39.       end if
  40.     end if
  41.   end if
  42. end
  43.